Package-level declarations
Types
Link copied to clipboard
interface IVinScannerFactory
Link copied to clipboard
API for VIN scanning.
Link copied to clipboard
Status of the barcode extraction.
Link copied to clipboard
data class VinBarcodeResult(val extractedVIN: String, val rectangle: List<Point>, val status: VinBarcodeExtractionStatus) : Parcelable
Result of the barcode scanner.
Link copied to clipboard
interface VinScanner
Interface for VinScanner API. See class documentation for more details.
Link copied to clipboard
data class VinScannerConfiguration(var optimizeSingleLine: Boolean = true, var extractVINFromBarcode: Boolean = false, var ocrResolutionLimit: Int = 0, var maximumNumberOfAccumulatedFrames: Int = 3, var minimumNumberOfRequiredFramesWithEqualScanningResult: Int = 2) : Parcelable
Configuration for the VIN scanner.
Link copied to clipboard
Link copied to clipboard
Performs VIN recognition on camera preview frames. Outputs results via VinScannerFrameHandler.ResultHandler.
Link copied to clipboard
data class VinScannerResult(val textResult: TextPatternScannerResult, val barcodeResult: VinBarcodeResult) : Parcelable
Result of the VIN scanner.